home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / arexxport_dev / demo / arexxtest.rexx next >
Encoding:
OS/2 REXX Batch file  |  1996-05-06  |  210 b   |  11 lines

  1. /* List all the Arexx Error Messages */
  2.  
  3.     if ~show("L","arexxport.library") then
  4.         if ~addlib("arexxport.library", 37, -108) then exit
  5.  
  6.     do n = 1 to 49
  7.         say localerrortext( n )
  8.     end
  9.  
  10. exit
  11.